home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / games / zmachine.zoo / makefile.unx < prev    next >
Makefile  |  1993-04-29  |  204b  |  12 lines

  1. CFLAGS=     -D_POSIX_SOURCE -Dunix
  2. LDFLAGS           =-i -s -ltcap -ltermlib
  3.  
  4. OBJS   =code.o io.o mem.o zbios.o zmachine.o
  5.  
  6. zmachine: $(OBJS)
  7.     cc $(LDFLAGS) -o zmachine $(OBJS)
  8.  
  9. clean:
  10.     @rm $(OBJS)
  11.  
  12.